home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 August / EnterCD 08_2005.iso / boot / menus / insert.scn < prev    next >
Encoding:
Text File  |  2005-04-27  |  3.2 KB  |  50 lines

  1. #
  2. # insert
  3. #
  4. insert_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.3                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                                    [INSERT]                                    "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. print " [F1] Normal bootup        (with boot: prompt)                                  "
  16. print " [F2] Console              (nosound, nomods)                                    "
  17. print " [F3] Recovery Console     (nosound, noswap, nofstab, nomods)                   "
  18. print " [F4] Recovery X-Windows   (nosound, noswap, nofstab, nomods)                   "
  19. print "                                                                                "
  20. print "                                                                                "
  21. print "                                                                                "
  22. print " [F5] Failsafe                                                                  "
  23. print "                                                                                "
  24. print "                                                                                "
  25. print " See http://www.knoppix.net/wiki/Cheat_Codes for a description of the           "
  26. print " cheatcodes used above.                                                         "
  27. print "                                                                                "
  28. print "                                                                                "
  29. print "                                                                                "
  30. print "                                                                                "
  31. print "                                                                                "
  32. print "                                                                                "
  33. set textColor = color[white on blue]
  34. print "                Please select an item (ESC returns to main menu)                "
  35. set textColor = color[white on black]
  36.  
  37. #
  38. # Actions
  39. #
  40. getkey
  41. clear
  42. if ($lastKey == key[f1]); then isolinux
  43. if ($lastKey == key[f2]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init 2 lang=en apm=power-off vga=normal nosound nomods nomce quiet BOOT_IMAGE=insert
  44. if ($lastKey == key[f3]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init 2 lang=en apm=power-off vga=normal nosound noswap nofstab nomods BOOT_IMAGE=insert
  45. if ($lastKey == key[f4]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init lang=en apm=power-off vga=791 nosound noswap nofstab nomods nomce quiet BOOT_IMAGE=insert
  46. if ($lastKey == key[f5]); then isolinux vmlinuz ramdisk_size=100000 init=/etc/init lang=en vga=normal nosound noapic noscsi nodma noapm nousb nopcmcia nofirewire noagp nomce nodhcp xmodule=vesa initrd=miniroot.gz BOOT_IMAGE=insert
  47. if ($lastKey == key[esc]); then script main.scn
  48. goto insert_menu
  49.  
  50.